home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
TEX-UTIL
/
TR2LATEX
/
h
/
maths
< prev
next >
Wrap
Text File
|
1992-04-27
|
940b
|
40 lines
/*
** tr2latex - troff to LaTeX converter
** $Id: maths.h,v 2.2 1992/04/27 15:13:26 Christian_Engel Dist krischan $
** COPYRIGHT (C) 1987 Kamal Al-Yahya, 1991,1992 Christian Engel
**
** Module: maths.h
**
** This file contains a list of the words that have simple
** correspondence in the two languages.
** Do not put here words that require action (like sub).
** If the word is identical in the two languages (except for TeX's backslash),
** put it in simil.h
*/
struct math_equiv {
char *troff_symb, *tex_symb;
} math[] = {
/* troff name TeX name */
"~", "\\ ",
"^", "\\,",
"above", "\\cr",
"ccol", "\\matrix",
"cpile", "\\matrix",
"fat", "",
"grad", "\\nabla",
"half", "{1\\over 2}",
"inf", "\\infty",
"inter", "\\cap",
"lcol", "\\matrix",
"lineup", "",
"lpile", "\\matrix",
"mark", "",
"nothing", "",
"pile", "\\matrix",
"rcol", "\\matrix",
"rpile", "\\matrix",
"union", "\\cup"
};